home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2001 Haziran / CHIP Haziran2001.iso / prog / haziran / 20 / setup.exe / {app} / plugins / XQ AOL IM 2.xpl < prev    next >
Encoding:
XSetup plugin  |  2001-03-28  |  1.2 KB  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="\Internet\Instant Messaging\AOL IM\"
  5. "NAME"="Maximum Number of Buddies"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.0"
  8. "TEXT 1"="Default Server"
  9. "DESCRIPTION 1"="By default, AOL only lets add 160 buddies to your buddy list. If you want, you can increase or decrease this value."
  10. "DESCRIPTION 2"="To change the value, type a new numeric value in the box. By default it is 160, but it is acceptable to have values above or below 160."
  11. "DESCRIPTION 3"="AOL Instant Messenger can be obtained at http://www.aol.com/aim/."
  12. "AUTHOR"="Neil R. Turner (totalxs@hotmail.com) for Xteq Systems"
  13. "CONTACTURL"="http://www.neilrt.cwc.net/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Thanks to Andrew Bourdon [PowerPenguin@techie.com] and Axcel216 [axcel216@aol.com] for this tip!"
  16.  
  17. sPath="HKCU\Software\America Online\AOL Instant Messenger (TM)\CurrentVersion\Buddy\MaxBuddies"
  18.  
  19. Sub Plugin_Initialize 
  20.  if RegPathExists(sPath) then
  21.   s=RegReadValue(sPath)
  22.   Call SetUIElement(1,s)
  23.  else
  24.   Disable
  25.  end if
  26. End Sub
  27.  
  28. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  s=GetUIElement(1)
  30.  Call RegWriteValue(sPath,s,1)
  31. End Sub
  32.  
  33.  
  34. Sub Plugin_Terminate 
  35. End Sub
  36.  
  37.  
  38.  
  39.